home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / gnuish / ispel40s / tailor.h < prev    next >
C/C++ Source or Header  |  1993-09-16  |  1KB  |  53 lines

  1. /* tailor.h -- target dependent definitions
  2.  * Copyright (C) 1992-1993 Jean-loup Gailly.
  3.  * This is free software; you can redistribute it and/or modify it under the
  4.  * terms of the GNU General Public License, see the file COPYING.
  5.  */
  6.  
  7. /* simplified for ispell program
  8.  * P.V. Ganelin
  9.  */
  10.  
  11.  
  12. /* The target dependent definitions should be defined here only.
  13.  * The target dependent functions should be defined in tailor.c.
  14.  */
  15.  
  16.  
  17. #if defined(__MSDOS__) && !defined(MSDOS)
  18. #  define MSDOS
  19. #endif
  20.  
  21.  
  22. #ifdef MSDOS
  23. #  ifdef __GNUC__
  24.      /* DJGPP version 1.09+ on MS-DOS.
  25.       * The DJGPP 1.09 stat() function must be upgraded before gzip will
  26.       * fully work.
  27.       * No need for DIRENT, since <unistd.h> defines POSIX_SOURCE which
  28.       * implies DIRENT.
  29.       */
  30. #  else
  31. #     define PATH_SEP  '\\'
  32. #     define PATH_SEPS "\\"
  33. #     ifdef __TURBOC__
  34. #        define RETSIGTYPE void
  35. #     endif
  36. #  endif
  37. #  define NO_PIPE
  38. #  define MAX_PATH_LEN  128
  39. #  define NO_MULTIPLE_DOTS
  40. #  define DEFAULT_EXEDIR
  41. #  define unlink remove
  42. #  define link   rename
  43. #endif
  44.  
  45.  
  46. #ifndef PATH_SEP
  47. #  define PATH_SEP '/'
  48. #endif
  49.  
  50. #ifndef PATH_SEPS
  51. #  define PATH_SEPS "/"
  52. #endif
  53.